2005-03-09 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkwidget.h (struct _GtkWidget): Typo fixes in comments.
+ (#169728, Morten Welinder, Owen Taylor)
+
* gtk/gtkwidget.c (gtk_widget_add_mnemonic_label): Fix a typo
in the docs. (#169729, Morten Welinder)
2005-03-09 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkwidget.h (struct _GtkWidget): Typo fixes in comments.
+ (#169728, Morten Welinder, Owen Taylor)
+
* gtk/gtkwidget.c (gtk_widget_add_mnemonic_label): Fix a typo
in the docs. (#169729, Morten Welinder)
2005-03-09 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkwidget.h (struct _GtkWidget): Typo fixes in comments.
+ (#169728, Morten Welinder, Owen Taylor)
+
* gtk/gtkwidget.c (gtk_widget_add_mnemonic_label): Fix a typo
in the docs. (#169729, Morten Welinder)
+2005-03-09 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/tmpl/gtkwidget.sgml: Typo fixes. (#169728,
+ Morten Welinder, Owen Taylor)
+
2005-02-27 Matthias Clasen <mclasen@redhat.com>
* gtk/tmpl/gtktreemodel.sgml: Fix stack vs heap
@style: The style for the widget. The style contains the colors the widget should be
drawn in for each state along with graphics contexts used to draw with and the font
to use for text.
-@requisition: The widgets desired size.
-@allocation: The widgets allocated size.
-@window: The widgets window or its parent window if it does not have a window. (Which
+@requisition: The widget's desired size.
+@allocation: The widget's allocated size.
+@window: The widget's window or its parent window if it does not have a window. (Which
will be indicated by the #GTK_NO_WINDOW flag being set).
@parent:
Set and unset by gtk_widget_set_sensitive().
The sensitivity of a widget determines whether it will receive
certain events (e.g. button or key presses). One premise for
- the widgets sensitivity is to have this flag set.
+ the widget's sensitivity is to have this flag set.
@GTK_PARENT_SENSITIVE:
Set and unset by gtk_widget_set_sensitive() operations on the
parents of the widget.
- This is the second premise for the widgets sensitivity. Once
+ This is the second premise for the widget's sensitivity. Once
it has %GTK_SENSITIVE and %GTK_PARENT_SENSITIVE set, its state is
effectively sensitive. This is expressed (and can be examined) by
the #GTK_WIDGET_IS_SENSITIVE macro.
widget is in the grab_widgets stack, and will be the preferred one for
receiving events other than ones of cosmetic value.
@GTK_RC_STYLE:
- Indicates that the widgets style has been looked up through the rc
+ Indicates that the widget's style has been looked up through the rc
mechanism. It does not imply that the widget actually had a style
defined through the rc mechanism.
@GTK_COMPOSITE_CHILD:
<!-- ##### MACRO GTK_WIDGET_RC_STYLE ##### -->
<para>
-Evaluates to %TRUE if the widgets style has been looked up through the rc
+Evaluates to %TRUE if the widget's style has been looked up through the rc
mechanism.
</para>
<xref linkend="size-allocation"/> for more information.
</para>
-@x: the X position of the widgets area relative to its parents allocation.
-@y: the Y position of the widgets area relative to its parents allocation.
-@width: the width of the widgets allocated area.
-@height: the height of the widgets allocated area.
+@x: the X position of the widget's area relative to its parents allocation.
+@y: the Y position of the widget's area relative to its parents allocation.
+@width: the width of the widget's allocated area.
+@height: the height of the widget's allocated area.
<!-- ##### STRUCT GtkSelectionData ##### -->
<para>
*/
guint8 state;
- /* The saved state of the widget. When a widgets state
+ /* The saved state of the widget. When a widget's state
* is changed to GTK_STATE_INSENSITIVE via
* "gtk_widget_set_state" or "gtk_widget_set_sensitive"
* the old state is kept around in this field. The state
*/
guint8 saved_state;
- /* The widgets name. If the widget does not have a name
+ /* The widget's name. If the widget does not have a name
* (the name is NULL), then its name (as returned by
- * "gtk_widget_get_name") is its classes name.
+ * "gtk_widget_get_name") is its class's name.
* Among other things, the widget name is used to determine
* the style to use for a widget.
*/
*/
GtkStyle *style;
- /* The widgets desired size.
+ /* The widget's desired size.
*/
GtkRequisition requisition;
- /* The widgets allocated size.
+ /* The widget's allocated size.
*/
GtkAllocation allocation;
- /* The widgets window or its parent window if it does
+ /* The widget's window or its parent window if it does
* not have a window. (Which will be indicated by the
* GTK_NO_WINDOW flag being set).
*/
GdkWindow *window;
- /* The widgets parent.
+ /* The widget's parent.
*/
GtkWidget *parent;
};